how to add new elements to a String[] array?

Posted by Pentium10 on Stack Overflow See other posts from Stack Overflow or by Pentium10
Published on 2010-05-16T10:37:30Z Indexed on 2010/05/16 10:40 UTC
Read the original article Hit count: 136

Filed under:
|
|

I have a Java code defined as:

String[] where;
/**/where.append(ContactsContract.Contacts.HAS_PHONE_NUMBER+"=1");
/**/where.append(ContactsContract.Contacts.IN_VISIBLE_GROUP+"=1");

Those two appends are not working in this form, how would that work correctly?

© Stack Overflow or respective owner

Related posts about java

Related posts about strings